func runtime.arenaIndex

16 uses

	runtime (current package)
		malloc.go#L678: 		} else if arenaIndex(p+n-1) >= 1<<arenaBits {
		malloc.go#L738: 		} else if arenaIndex(p) >= 1<<arenaBits {
		malloc.go#L740: 		} else if arenaIndex(p+size-1) >= 1<<arenaBits {
		malloc.go#L757: 	for ri := arenaIndex(uintptr(v)); ri <= arenaIndex(uintptr(v)+size-1); ri++ {
		mcheckmark.go#L89: 	ai := arenaIndex(obj)
		mheap.go#L595: func arenaIndex(p uintptr) arenaIdx {
		mheap.go#L682: 	ri := arenaIndex(p)
		mheap.go#L712: 	ai := arenaIndex(p)
		mheap.go#L738: 	ai := arenaIndex(p)
		mheap.go#L1003: 	ai := arenaIndex(base)
		mheap.go#L1008: 			ai = arenaIndex(base + n*pageSize)
		mheap.go#L1027: 		ai := arenaIndex(base)
		mheap.go#L1852: 	ai := arenaIndex(s.base())
		mheap.go#L1860: 	ai := arenaIndex(s.base())
		mpagealloc.go#L616: 	ai := arenaIndex(addr.addr())